home *** CD-ROM | disk | FTP | other *** search
/ Chip 2001 December / Chip_2001-12_cd1.bin / zkuste / tuning / download / xteq / setup.exe / {app} / plugins / XQ Explorer Options 2.xpl < prev    next >
Text File  |  2001-01-21  |  1KB  |  42 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 6.0"
  2. "TYPE"="6"
  3. "COUNT"="1"
  4. "UIPATH"="Appearance\Explorer\Settings (Advanced)"
  5. "NAME"=""Classic" Explorer"
  6. "WARNING"="1"
  7. "VERSION"="1.02"
  8. "LANGUAGE"="VBScript"
  9. "TEXT 1"="Use "classic" Explorer style"
  10. "DESCRIPTION 1"="If this option is activated, the Explorer will use the default Windows 95 style (e.g. no single-click, no quicklaunch bar, no tool tips...)."
  11. "DESCRIPTION 2"="Basically this means, you will *LOSE* all new features introduces with ActiveDesktop."
  12. "AUTHOR"="Xteq Systems"
  13. "CONTACTURL"="http://www.xteq.com"
  14. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  15. "COMMENT 1"="ClassicShell option from Alexander Khoroshev [aelric@atnet.ru]"
  16.  
  17.  
  18.  
  19. sV5="HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer\ClassicShell"
  20.  
  21.  
  22. Sub Plugin_Initialize 
  23.  s=RegReadValue(sV5)
  24.  if IsEmpty(s)=false then SetUIElement 1,true 
  25. End Sub
  26.  
  27. Sub Plugin_Apply(ElementIndex,ElementSubIndex)
  28.  b=GetUIElement(1)
  29.  if b=true then
  30.     Call RegWriteValue(sV5,"1",1)
  31.  else
  32.     s=RegReadValue(sV5)
  33.     if IsEmpty(s)=false then RegDeleteValue(sV5)
  34.  end if
  35.  
  36.  
  37.  Call IndicateSettingChange()
  38. End Sub
  39.  
  40. Sub Plugin_Terminate 
  41. End Sub
  42.